home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games: Greatest Hits 1996 / Amiga Games: Greatest Hits 1996.iso / rexx / deiconify.rx < prev    next >
Text File  |  1995-01-16  |  739b  |  32 lines

  1. /*****************************************************************************
  2.  * $VER: Deiconify v0.1 (16.1.95) - by Daniel Stenberg
  3.  *
  4.  *
  5.  * USAGE:
  6.  *
  7.  *   Simply invoke it to make FrexxEd.1 to get deiconified.
  8.  *
  9.  * BEST USAGE:
  10.  *
  11.  *   Enter the following command line in a shell or in your user-startup file:
  12.  *
  13.  *   FrexxEd:bin/frexxkey hotkey "rshift ralt return" system rx (continued)
  14.  *    FrexxEd:bin/Deiconify.rx
  15.  *
  16.  ****************************************************************************/
  17.  
  18. OPTIONS RESULTS
  19.  
  20. DO
  21.   PortName = 'FREXXED.1'
  22.  
  23.   IF ~SHOW(P, PortName) THEN DO
  24.     ADDRESS COMMAND "RUN <NIL: >NIL: Fred"
  25.   END
  26.   ELSE DO
  27.     ADDRESS VALUE PortName
  28.     'Deiconify();'
  29.   END
  30. END
  31. /*************************************/
  32.